home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 316 / libsrc / gcvt.c < prev    next >
Encoding:
Text File  |  1988-10-20  |  444 b   |  22 lines

  1. /*
  2.  *        Cross Development System for Atari ST 
  3.  *     Copyright (c) 1988, Memorial University of Newfoundland
  4.  *
  5.  *  When there are floating point routines this will be written.
  6.  *
  7.  * $Header: gcvt.c,v 1.1 88/01/29 17:29:44 m68k Exp $
  8.  *
  9.  * $Log:    gcvt.c,v $
  10.  * Revision 1.1  88/01/29  17:29:44  m68k
  11.  * Initial revision
  12.  * 
  13.  */
  14. char *
  15. gcvt(value, ndigit, buf)
  16.     double    value;
  17.     int    ndigit;
  18.     char    *buf;
  19. {
  20.     return (char *) 0;
  21. }
  22.